home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #14 / Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO / bbs_door / vfy_39.zip / 4-WC40.ZIP / W!4SEC.DOC < prev    next >
Text File  |  1995-03-15  |  5KB  |  126 lines

  1.         **************************************************************
  2.         *                                                            *
  3.         *                      W!4SEC.EXE  v1.0                      *
  4.         *                                                            *
  5.         *  WILDCAT! v4.x BBS User Security Level Adjustment Program  *
  6.         *                                                            *
  7.         *                   Copyright (c)  1994/95                   *
  8.         *                Sagerquist Micro Engineering                *
  9.         *                                                            *
  10.         *                   1414 W. Kerrick Street                   *
  11.         *                    Lancaster, Ca. 93534                    *
  12.         *                    Data  (805) 723-6908                    *
  13.         *                                                            *
  14.         **************************************************************
  15.  
  16. DESCRIPTION
  17. -----------
  18.     W!4SEC.EXE adjusts a WILDCAT! v4.x BBS caller's security level in
  19.     the WILDCAT file USERREC.BIN.  This action is useful when invoking
  20.     BBS Doors such as a Call Back Verification, a Questionnaire or
  21.     Opinion Poll, etc., where the caller is to be rewarded with a
  22.     security level adjustment upon successful completion.  As an
  23.     option, the sysop may define an amount of extra time in minutes
  24.     to add to the caller's remaining time for that call.
  25.  
  26. SYNTAX
  27. ------
  28.     W!4SEC [/D:(Location of USERREC.BIN)]
  29.            [/S:(Security Level Name)]
  30.            [/T+:(Additional Time Remaining on Return to BBS)]
  31.            [/T=:(Remaining Time on Return to BBS)]
  32.  
  33.     Note:  Only one /T switch may be used, not both.
  34.  
  35.     W!4SEC /D:C:\WC40\WCWORK /S:WC10
  36.     W!4SEC /D:C:\WC40\WCWORK /S:WC10 /T+:30
  37.     W!4SEC /D:C:\WC40\WCWORK\NODE%WCNODEID% /S:WC10 /T=:90
  38.  
  39. SAMPLE TRAP DOOR BATCH FILE
  40. ---------------------------
  41.     Note:   This example displays the use of W!4SEC.EXE after VERIFY!.EXE,
  42.             an excellent BBS Call Back Verification program.  On success,
  43.         the CBV returns ERRORLEVEL 0 or 1, and W!4SEC.EXE is then
  44.         called.
  45.  
  46. @ECHO OFF
  47. CLS
  48. C:
  49. CD C:\WC40\VERIFY!
  50. VERIFY! /B:WILDCAT! /D:C:\WC40\WCWORK\NODE1
  51. rem  ERRORLEVEL 0 and 1 means caller is verified.  
  52. rem  ERRORLEVEL 0 == local call
  53. rem  ERRORLEVEL 1 == long distance
  54. IF ERRORLEVEL 0 IF NOT ERRORLEVEL 2 goto ADJUST
  55. goto END
  56. :ADJUST
  57. CD C:\WC40\WCWORK
  58. rem  Adjust caller's security level to "WC10" and give an extra 30 minutes.
  59. W!4SEC /D:C:\WC40\WCWORK\NODE1 /S:WC10 /T+:30
  60. :END
  61.  
  62. TECHNICAL
  63. ---------
  64.     W!4SEC.EXE alters the WILDCAT! v4.x BBS file USERREC.BIN.  WILDCAT!
  65.     v4.x BBS will read this file on return from a door.  Any information
  66.     altered in this file is read into WILDCAT's database and the
  67.     adjustments are made.
  68.  
  69.     On exit of W!4SEC, ERRORLEVELs are returned.  Your batch file can
  70.     check the ERRORLEVEL and determine what has happened.  The following
  71.     is a list of W!4SEC's ERRORLEVELs and their meaning:
  72.  
  73.     ERRORLEVEL   0        Normal exit, adjustment successful.
  74.     ERRORLEVEL   1        Error exit, either the file cannot be found,
  75.                 accessed or written to.  The actual reason
  76.                 for the error is written to the screen.
  77.  
  78.     Review your DOS manual for more information on ERRORLEVELs.
  79.  
  80. DISCLAIMER
  81. ----------
  82.     This program is distributed as is.  No warranty, either expressed or
  83.     implied is offered and the programmer is not responsible for any
  84.     damages or expenses that may occur through the use of this program.
  85.     The user shall determine its suitability.  Extensive testing has been
  86.     performed and every effort has been made to ensure satisfactory 
  87.     performance prior to release.  Please communicate any difficulties 
  88.     with the programmer through the BBS at (805) 723-6908.  Any problems
  89.     received will be treated as a top priority.
  90.  
  91.     Please note that this is a BETA TEST release.  BACK UP YOUR DATA!!!!
  92.     Especially on this release, the first for this program!  Results are
  93.     in no way guarenteed, although I believe testing will prove this
  94.     program to be solid.  Please report any errors or suggestions to
  95.     Carl Sagerquist at the BBS number below.
  96.  
  97. CREDITS
  98. -------
  99.     Thanks to Jeff Martin of Gresham, OR (BBS (503) 666-0192) for
  100.     requesting this program, communicating its need.  With the upgrade
  101.     to WILDCAT v4.0, W!SEC.EXE became obsolete.
  102.  
  103.     WILDCAT! is copyrighted software by Mustang Software, Inc.,
  104.     Bakersfield, CA. BBS: (805) 973-2400
  105.  
  106. PROGRAMMING SERVICES
  107. ====================
  108.     W!4SEC.EXE is a custom program, and performs exactly as requested.
  109.  
  110.     Programming services are provided by Sagerquist Micro Engineering
  111.     by request.  The point of contact is the S M E Support BBS at
  112.     (805) 723-6908, or via mail at the following address:
  113.  
  114.     Sagerquist Micro Engineering
  115.     1414 W. Kerrick St.
  116.     Lancaster, CA 93534
  117.     BBS (805) 723-6908
  118.  
  119.     If you have a need for a program of any kind, please let us know.
  120.  
  121. HISTORY
  122. -------
  123.     03/15/95 v1.0 - First full version release.
  124.  
  125.     07/31/94 v0.1 - First beta release.
  126.